home *** CD-ROM | disk | FTP | other *** search
/ Aminet 41 / Aminet 41 (2001)(Schatztruhe)[!][Feb 2001].iso / Aminet / game / think / newmasterm_src.lha / newmastermind / menuactions.h < prev    next >
C/C++ Source or Header  |  2000-11-08  |  672b  |  29 lines

  1. /*
  2.  * menuactions.h
  3.  * =============
  4.  * The menu actions.
  5.  *
  6.  * Copyright (C) 1994-2000 Håkan L. Younes (lorens@hem.passagen.se)
  7.  */
  8.  
  9. #ifndef MENUACTIONS_H
  10. #define MENUACTIONS_H
  11.  
  12. #include <exec/types.h>
  13.  
  14.  
  15. extern VOID New(VOID);
  16. extern VOID About(VOID);
  17. extern VOID Quit(VOID);
  18. extern VOID ColorDisplay(BOOL checked);
  19. extern VOID OpponentHuman(BOOL checked);
  20. extern VOID OpponentComputer(BOOL checked);
  21. extern VOID CorrectionChildren(BOOL checked);
  22. extern VOID CorrectionAdults(BOOL checked);
  23. extern VOID NumColors4(BOOL checked);
  24. extern VOID NumColors6(BOOL checked);
  25. extern VOID NumColors8(BOOL checked);
  26. extern VOID SaveSettingsAction(VOID);
  27.  
  28. #endif /* MENUACTIONS_H */
  29.